home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 351-375 / disk_360 / uucp / uucp0.lzh / src / lib / sleep.c < prev    next >
C/C++ Source or Header  |  1990-04-04  |  337b  |  25 lines

  1.  
  2. /*
  3.  *  SLEEP.C
  4.  *
  5.  *  $Header: Beta:src/uucp/src/lib/RCS/sleep.c,v 1.1 90/02/02 12:08:34 dillon Exp Locker: dillon $
  6.  *
  7.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  8.  *
  9.  */
  10.  
  11. #include <stdio.h>
  12. #include "protos.h"
  13. #include "config.h"
  14.  
  15. Prototype void sleep(int);
  16.  
  17. void
  18. sleep(n)
  19. int n;
  20. {
  21.     if (n)
  22.     Delay(50*n);
  23. }
  24.  
  25.